home *** CD-ROM | disk | FTP | other *** search
/ Aminet 33 / Aminet 33 - October 1999.iso / Aminet / docs / mags / woa4.lha / WORLD4 / update.cis < prev    next >
Encoding:
Text File  |  1999-08-02  |  1.5 KB  |  69 lines

  1. (working
  2.    "Decompressing Update Files..."
  3. )
  4.  
  5. (execute "lha x woa_upd.lha ram:")
  6.  
  7. (welcome)
  8.  
  9. (message
  10.    "World Of Amiga\n\n"
  11.    "This Installer will install the needed versions of AmigaGuide, "
  12.    "Datatypes.library, Amigaguide.library and text.datatype "
  13.    "into relevant places on your hard disk. This script will check "
  14.    "the versions you already have before updating anything so if "
  15.    "you have a later version than you need, nothing will be changed. "
  16.    "\n\n"
  17. )
  18.  
  19. (message
  20.    "World Of Amiga\n\n"
  21.    "Just for reference, here's a list of which versions you need as "
  22.    "a bare minumum:\n\n"
  23.    "Datatypes.library - v39.11\n"
  24.    "Text.datatype - v39.7\n"
  25.    "AmigaGuide.library - v40.4\n"
  26.    "AmigaGuide.datatype - v39.15\n"
  27.    "Ascii.datatype - v39.5\n"
  28. )
  29.  
  30. (message
  31.    "Note that if nothing is copied, it doesn't mean that the Installer "
  32.    "went wrong, it simply means that you have all necessary versions "
  33.    "of the files mentioned on the previous page. "
  34. )
  35.  
  36. (copylib
  37.    (source "ram:woalibs/datatypes.library")
  38.    (dest "libs:")
  39.    (optional nofail)
  40. )
  41.  
  42. (copylib
  43.    (source "ram:woalibs/amigaguide.library")
  44.    (dest "libs:")
  45.    (optional nofail)
  46. )
  47.  
  48. (copylib
  49.    (source "ram:woalibs/ascii.datatype")
  50.    (dest "sys:classes/datatypes/")
  51.    (optional nofail)
  52. )
  53.  
  54. (copylib
  55.    (source "ram:woalibs/text.datatype")
  56.    (dest "sys:classes/datatypes/")
  57.    (optional nofail)
  58. )
  59.  
  60. (copylib
  61.    (source "ram:woalibs/amigaguide.datatype")
  62.    (dest "sys:classes/datatypes/")
  63.    (optional nofail)
  64. )
  65.  
  66. (delete "ram:woalibs/#?")
  67. (delete "ram:woalibs")
  68.  
  69. (complete 100)